bitkeeper revision 1.1655 (429f9c02qVlZ13S-reG9GUvOJtT9tA)
authoriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>
Thu, 2 Jun 2005 23:53:38 +0000 (23:53 +0000)
committeriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>
Thu, 2 Jun 2005 23:53:38 +0000 (23:53 +0000)
Current -unstable doesn't build, it's missing one exec_domain -> vcpu cleanup.

Signed-off-by: Chris Wright <chrisw@osdl.org>
Signed-off-by: ian@xensource.com
linux-2.6.11-xen-sparse/arch/xen/kernel/evtchn.c

index 74e5d63a96ff533f21dc57440ffac90a3c27bfbe..c88b802268af950dd777e395205a0bed3b6f05c7 100644 (file)
@@ -215,7 +215,7 @@ int bind_ipi_on_cpu_to_irq(int cpu, int ipi)
     if ( (evtchn = per_cpu(ipi_to_evtchn, cpu)[ipi]) == 0 )
     {
         op.cmd                 = EVTCHNOP_bind_ipi;
-        op.u.bind_ipi.ipi_edom = cpu;
+        op.u.bind_ipi.ipi_vcpu = cpu;
         if ( HYPERVISOR_event_channel_op(&op) != 0 )
             panic("Failed to bind virtual IPI %d on cpu %d\n", ipi, cpu);
         evtchn = op.u.bind_ipi.port;